home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 1999 May / SGI IRIX 6.5 Applications 1999 May.iso / dist / arraysvcs.idb / usr / lib / array / auptime.z / auptime
Text File  |  1998-10-27  |  160b  |  11 lines

  1. #!/bin/sh
  2. #
  3. # Simple script to implement "array uptime"
  4. #
  5. # Usage: auptime <name>
  6. #
  7.  
  8. /usr/bsd/uptime    |\
  9. nawk '{ printf "%12s: %s\n", "'$1'", substr($0, 10) }'
  10.  
  11.